IPTOOL readme.txt Description: ============ IPTOOL.EXE is a utility for creating property stream files and HTML tags for embedding OLE objects in web documents. BACKGROUND: =========== First, a little background. Internet Explorer supports two different types of OLE embeddings. The first type requires no initialization data when created. This type of embedding can be created by simply specifying the CLSID of the object in an INSERT tag. Optionally, it is usually a good idea to also provide a WIDTH and HEIGHT: The second (and more interesting) type of control requires a set of data for initialization purposes. Internet Explorer defines a format for a stream of data which is used to initialize a control: |16 byte CLSID| rest of persistent data | This is a stream where the first 16 bytes contains the CLSID of the object, and the rest of the stream contains initialization data for the control. The initialization data is created by calling the control's IPersistStream::Save method. This type of embedding can be specified in HTML as (for example): -Run regedit.exe -Look in MyComputer\HKEY_CLASSES_ROOT\ -Add the Key "Insertable" as a subkey under -Note: "CLSID" should already be present as subkey to . -Within "Insertable" Key, leave Name to (Default) and Data to "". -Note: Most VB4.0 OCXs are registered without the "Insertable" key statement.